home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / pyshared / chardet / latin1prober.py < prev    next >
Text File  |  2006-10-21  |  5KB  |  137 lines

  1. ######################## BEGIN LICENSE BLOCK ########################
  2. # The Original Code is Mozilla Universal charset detector code.
  3. #
  4. # The Initial Developer of the Original Code is
  5. # Netscape Communications Corporation.
  6. # Portions created by the Initial Developer are Copyright (C) 2001
  7. # the Initial Developer. All Rights Reserved.
  8. #
  9. # Contributor(s):
  10. #   Mark Pilgrim - port to Python
  11. #   Shy Shalom - original C code
  12. #
  13. # This library is free software; you can redistribute it and/or
  14. # modify it under the terms of the GNU Lesser General Public
  15. # License as published by the Free Software Foundation; either
  16. # version 2.1 of the License, or (at your option) any later version.
  17. # This library is distributed in the hope that it will be useful,
  18. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  20. # Lesser General Public License for more details.
  21. # You should have received a copy of the GNU Lesser General Public
  22. # License along with this library; if not, write to the Free Software
  23. # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  24. # 02110-1301  USA
  25. ######################### END LICENSE BLOCK #########################
  26.  
  27. from charsetprober import CharSetProber
  28. import constants
  29. import operator
  30.  
  31. FREQ_CAT_NUM = 4
  32.  
  33. UDF = 0 # undefined
  34. OTH = 1 # other
  35. ASC = 2 # ascii capital letter
  36. ASS = 3 # ascii small letter
  37. ACV = 4 # accent capital vowel
  38. ACO = 5 # accent capital other
  39. ASV = 6 # accent small vowel
  40. ASO = 7 # accent small other
  41. CLASS_NUM = 8 # total classes
  42.  
  43. Latin1_CharToClass = ( \
  44.   OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH,   # 00 - 07
  45.   OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH,   # 08 - 0F
  46.   OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH,   # 10 - 17
  47.   OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH,   # 18 - 1F
  48.   OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH,   # 20 - 27
  49.   OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH,   # 28 - 2F
  50.   OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH,   # 30 - 37
  51.   OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH,   # 38 - 3F
  52.   OTH, ASC, ASC, ASC, ASC, ASC, ASC, ASC,   # 40 - 47
  53.   ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC,   # 48 - 4F
  54.   ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC,   # 50 - 57
  55.   ASC, ASC, ASC, OTH, OTH, OTH, OTH, OTH,   # 58 - 5F
  56.   OTH, ASS, ASS, ASS, ASS, ASS, ASS, ASS,   # 60 - 67
  57.   ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS,   # 68 - 6F
  58.   ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS,   # 70 - 77
  59.   ASS, ASS, ASS, OTH, OTH, OTH, OTH, OTH,   # 78 - 7F
  60.   OTH, UDF, OTH, ASO, OTH, OTH, OTH, OTH,   # 80 - 87
  61.   OTH, OTH, ACO, OTH, ACO, UDF, ACO, UDF,   # 88 - 8F
  62.   UDF, OTH, OTH, OTH, OTH, OTH, OTH, OTH,   # 90 - 97
  63.   OTH, OTH, ASO, OTH, ASO, UDF, ASO, ACO,   # 98 - 9F
  64.   OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH,   # A0 - A7
  65.   OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH,   # A8 - AF
  66.   OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH,   # B0 - B7
  67.   OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH,   # B8 - BF
  68.   ACV, ACV, ACV, ACV, ACV, ACV, ACO, ACO,   # C0 - C7
  69.   ACV, ACV, ACV, ACV, ACV, ACV, ACV, ACV,   # C8 - CF
  70.   ACO, ACO, ACV, ACV, ACV, ACV, ACV, OTH,   # D0 - D7
  71.   ACV, ACV, ACV, ACV, ACV, ACO, ACO, ACO,   # D8 - DF
  72.   ASV, ASV, ASV, ASV, ASV, ASV, ASO, ASO,   # E0 - E7
  73.   ASV, ASV, ASV, ASV, ASV, ASV, ASV, ASV,   # E8 - EF
  74.   ASO, ASO, ASV, ASV, ASV, ASV, ASV, OTH,   # F0 - F7
  75.   ASV, ASV, ASV, ASV, ASV, ASO, ASO, ASO,   # F8 - FF
  76. )
  77.  
  78. # 0 : illegal 
  79. # 1 : very unlikely 
  80. # 2 : normal 
  81. # 3 : very likely
  82. Latin1ClassModel = ( \
  83. # UDF OTH ASC ASS ACV ACO ASV ASO
  84.    0,  0,  0,  0,  0,  0,  0,  0,  # UDF
  85.    0,  3,  3,  3,  3,  3,  3,  3,  # OTH
  86.    0,  3,  3,  3,  3,  3,  3,  3,  # ASC
  87.    0,  3,  3,  3,  1,  1,  3,  3,  # ASS
  88.    0,  3,  3,  3,  1,  2,  1,  2,  # ACV
  89.    0,  3,  3,  3,  3,  3,  3,  3,  # ACO
  90.    0,  3,  1,  3,  1,  1,  1,  3,  # ASV
  91.    0,  3,  1,  3,  1,  1,  3,  3,  # ASO
  92. )
  93.  
  94. class Latin1Prober(CharSetProber):
  95.     def __init__(self):
  96.         CharSetProber.__init__(self)
  97.         self.reset()
  98.  
  99.     def reset(self):
  100.         self._mLastCharClass = OTH
  101.         self._mFreqCounter = [0] * FREQ_CAT_NUM
  102.         CharSetProber.reset(self)
  103.  
  104.     def get_charset_name(self):
  105.         return "windows-1252"
  106.  
  107.     def feed(self, aBuf):
  108.         aBuf = self.filter_with_english_letters(aBuf)
  109.         for c in aBuf:
  110.             charClass = Latin1_CharToClass[ord(c)]
  111.             freq = Latin1ClassModel[(self._mLastCharClass * CLASS_NUM) + charClass]
  112.             if freq == 0:
  113.                 self._mState = constants.eNotMe
  114.                 break
  115.             self._mFreqCounter[freq] += 1
  116.             self._mLastCharClass = charClass
  117.  
  118.         return self.get_state()
  119.  
  120.     def get_confidence(self):
  121.         if self.get_state() == constants.eNotMe:
  122.             return 0.01
  123.   
  124.         total = reduce(operator.add, self._mFreqCounter)
  125.         if total < 0.01:
  126.             confidence = 0.0
  127.         else:
  128.             confidence = (self._mFreqCounter[3] / total) - (self._mFreqCounter[1] * 20.0 / total)
  129.         if confidence < 0.0:
  130.             confidence = 0.0
  131.         # lower the confidence of latin1 so that other more accurate detector 
  132.         # can take priority.
  133.         confidence = confidence * 0.5
  134.         return confidence
  135.